8d0f67f0b67bc4014eb366a991fb07f46c60abf8,subprojects/platform-play/src/main/java/org/gradle/play/internal/run/PlayWorkerServer.java,PlayWorkerServer,disableUrlConnectionCaching,#,91

Before Change


        } catch (MalformedURLException e) {
            UncheckedException.throwAsUncheckedException(e);
        } catch (IOException e) {
            UncheckedException.throwAsUncheckedException(e);
        }
    }

After Change


        } catch (MalformedURLException e) {
            throw UncheckedException.throwAsUncheckedException(e);
        } catch (IOException e) {
            throw UncheckedException.throwAsUncheckedException(e);
        }
    }